* vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
authorGlenn Morris <rgm@gnu.org>
Thu, 28 Jan 2010 05:54:48 +0000 (21:54 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 28 Jan 2010 05:54:48 +0000 (21:54 -0800)
lisp/ChangeLog
lisp/vc-svn.el

index 4a32ed01643de6506c01944f23edf20207f91225..eb3caeffcab4442f096a051f80cf1bb07ab23d34 100644 (file)
@@ -1,5 +1,7 @@
 2010-01-28  Glenn Morris  <rgm@gnu.org>
 
+       * vc-svn.el (vc-svn-update): Use "svn --non-interactive".  (Bug#4280)
+
        * log-edit.el (log-edit-strip-single-file-name): Add missing
        :safe, :group, and :version tags.
 
index 658d4528f685b90b2d9c89e9ea2f6730640cd569..9f992fdd1c87397f4e69dc812bc35eb9a53940f9 100644 (file)
@@ -330,6 +330,7 @@ This is only possible if SVN is responsible for FILE's directory.")
     ;; Check out a particular version (or recreate the file).
     (vc-file-setprop file 'vc-working-revision nil)
     (apply 'vc-svn-command nil 0 file
+          "--non-interactive"          ; bug#4280
           "update"
           (cond
            ((null rev) "-rBASE")